home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / coffeetycoon_Demo.swf / scripts / DefineButton2_852 / BUTTONCONDACTION on(press).as next >
Encoding:
Text File  |  2006-06-13  |  336 b   |  8 lines

  1. on(press){
  2.    var buttonnum = parseInt(this._name.substr("buyitem_".length));
  3.    var message;
  4.    message = "" + _root.willbuy_str + " " + _root.item_text[buttonnum] + "\n";
  5.    message += "" + _root.willcost_str + " " + _root.item_cost[buttonnum] + " " + _root.gems_str + "\n";
  6.    _root.confirm_action("buy",buttonnum,message);
  7. }
  8.